home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / patches / ip20t21a.lha / IFX20to21a_Patch / Patches2.lha / Rexx / AutoFX / SaveBufferAs_ILBM+A.ifx < prev    next >
Text File  |  1995-03-20  |  1KB  |  53 lines

  1. /*
  2.  * SaveBufferAs.ifx
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Save main buffer.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Frame number (1 - N)
  9.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  10.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  11.  *    Word(Arg(1),4) = Sequence number (?)
  12.  *    Word(Arg(1),5) = Total number of frames (N)
  13.  *
  14.  * Returns:
  15.  *    0 if successful, non-zero on failure
  16.  *
  17.  */
  18.  
  19. OPTIONS RESULTS
  20.  
  21. framenum = Word(Arg(1),1)
  22. mainname = Word(Arg(1),2)
  23. swapname = Word(Arg(1),3)
  24. seqnum   = Word(Arg(1),4)
  25. framemax = Word(Arg(1),5)
  26.  
  27. base = 'Autofx_SaveBufferAsILBMalf_'
  28.  
  29. path = GETCLIP(base||'Path')
  30. ext  = GETCLIP(base||'Ext')
  31.  
  32. i = POS('*', ext)
  33. IF i > 0 THEN ext = LEFT(ext,i-1) || RIGHT('00000'||framenum,5) || SUBSTR(ext,i+1)
  34.  
  35. outfile = mainname||ext
  36. IF path ~= "" THEN DO
  37.  
  38.    i = LASTPOS('/',mainname)
  39.    IF i = 0 THEN i = LASTPOS(':',mainname)
  40.  
  41.    IF i = 0 THEN
  42.       file = mainname
  43.    ELSE
  44.       file = SUBSTR(mainname,i+1)
  45.  
  46.    IF RIGHT(path,1) ~= ':' THEN path = path||'/'
  47.    outfile = path||file||ext
  48.  
  49.    END
  50.  
  51. SaveBufferAs 'ILBM+Alpha' '"'outfile'"'
  52. EXIT rc
  53.